system/fonksiyon.php de alttakini buluyoruz..

function sed_bbcode_autourls($text)
	{
$text = ' '.$text;
$text = preg_replace("#([\n ])([a-z0-9]+?)://([^\t \n\r]+)#i", "\\1[url]\\2://\\3[/url]", $text);
$text = preg_replace("#([\n ])([a-z0-9-_.]+?@[A-z0-9-]+\.[^,\t \n\r]+)#i", "\\1[email]\\2[/email]", $text);
return(substr($text,1));
	}

Alttaki ile deitiriyoruz..



function sed_bbcode_autourls($text)
	{
$text = ' '.$text;
$text = preg_replace("#([\n ])([a-z0-9]+?)://([^\t \n\r]+)#i", "\\1[url]\\2://\\3[/url]", $text);
$text = preg_replace("#([\n ])([a-z0-9-_.]+?@[A-z0-9-]+\.[^,\t \n\r]+)#i", "\\1[email]\\2[/email]", $text);

global $usr;
if($usr['id'] > 0)
$text = preg_replace('#\[/?hide\]#', '', $text);
else
$text = preg_replace('#\[hide].*?\[/hide]#s', '<div> <br><center><b><font color="#018BFF">Mesajn ieriini Grmeniz iin </font><a href="users.php?m=auth">Giri </a>yapnz.</b></center></div>', $text);
	return(substr($text,1));
	}

